/* 通用全局默认样式 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
input,
textarea,
video {
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
    box-sizing: border-box;
    outline: none;
    font-size: unset;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

input,
text-area,
button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}


ol,
ul {
    list-style: none;
}

a {
    color: #242424;
}

img {
    line-height: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body>div {
    position: relative;
}

hr {
    border: none;
    height: 1px;
    background: #e4e4e4;
}

button,
input,
textarea {
    outline: none;
}

.data-container-for-search {
    position: fixed;
    max-width: 100vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 80vh;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}


#app {
    background: #fff;
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
}

html,
body,
#app {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    color: #242424;
    font-family: sans-serif;
}



.body-100vh {
    height: 100vh;
    overflow: hidden;
}

/* 全局通用样式 */
img.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div.bg-img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url() no-repeat center center;
    background-size: cover;
}

.bg-img-container {
    position: relative;
    width: 100%;
}

.absolute-row-center {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
}

.absolute-col-center {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.rotate-180deg {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}

.rotate-90deg {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.rotate-45deg {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}



.tr100-ease {
    transition: all .1s ease;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -ms-transition: all .1s ease;
    -o-transition: all .1s ease;
}

.tr300-ease {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.tr500-ease {
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.tr1500-ease {
    transition: all 1.5s ease;
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -ms-transition: all ease;
    -o-transition: all 1.5s ease;
}

.td100 {
    transition-delay: .1s;
    -webkit-transition-delay: .1s;
    -moz-transition-delay: .1s;
    -ms-transition-delay: .1s;
    -o-transition-delay: .1s;
}

.td300 {
    transition-delay: .3s;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -ms-transition-delay: .3s;
    -o-transition-delay: .3s;
}

.hidden {
    display: none !important;
}

.font-bk {
    color: #3e3e3e !important;
}

.font-gy {
    color: #555 !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

a {
    display: block;
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
    -webkit-transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
    -moz-transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
    -ms-transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
    -o-transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
}

.iconfont {
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}


html {
    font-size: 100px;
}

body {
    font-size: 16px;
    line-height: 1.6;
}

@media only screen and (min-width:1921px) {
    html {
        font-size: 150px;
    }

    body {
        line-height: 1.6;
    }
}

@media only screen and (max-width:1600px) {
    html {
        font-size: 80px;
    }
}

@media only screen and (max-width:1400px) {
    html {
        font-size: 75px;
    }
}

@media only screen and (max-width:1200px) {
    html {
        font-size: 60px;
    }
}

@media only screen and (max-width:1024px) {
    html {
        font-size: 55px;
    }
}

@media only screen and (max-width:768px) {
    html {
        font-size: 40px;
    }


}

@media only screen and (max-width:480px) {
    body {
        font-size: 14px;
        line-height: 1.4;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.only-for-phone {
    display: none;
}

@media only screen and (max-width:480px) {
    /* .only-for-phone {
        display: block;
    } */
}

li.nothing {
    text-align: center;
    margin: 0.3rem auto;
}

/* 所有页面共用部分样式  */

/* 共同部件样式 */

#zoom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    background: #fff;
    display: none;
    cursor: url(/phone/images/suoxiao.png), auto;
}

#zoom::after {
    content: "\e600";
    font-family: "iconfont";
    display: block;
    padding: 20px;
    font-size: 30px;
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(126, 126, 126, 0.5);
    z-index: 2;
    cursor: pointer;
}

@media only screen and (max-width:480px) {
    #zoom {
        display: none !important;
    }
}

.text-container {
    text-align: justify;
}

.text-container.full-img img {
    max-width: 100%;
    line-height: 0;
    display: block;
}

.text-container.full-img>* {
    margin-left: auto;
    margin-right: auto;
}

.text-container a {
    display: unset;
}

.cut-line {
    display: inline-block;
    width: 1rem;
    height: 3px;
    position: relative;
    margin: 0.6rem 0;
}

.cut-line.bold {
    height: 0.08rem;
    min-height: 3px;
}

.cut-line::before,
.cut-line::after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: calc(100% - 15px);
    background: #da251d;
    left: 0;
}

.cut-line.white::before,
.cut-line.white::after {
    background: #fff;
}

.cut-line::after {
    left: auto;
    right: 0;
    width: 10px;
}

.link-container {
    display: inline-block;
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
}

.link-container .inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-container .inner-container>div {
    padding: 10px 18px;
    background: #da251d;
    color: #fff;
    font-size: 14px;
    transition: background 0.5s ease, color 0.5s ease;
    -webkit-transition: background 0.5s ease, color 0.5s ease;
    -moz-transition: background 0.5s ease, color 0.5s ease;
    -ms-transition: background 0.5s ease, color 0.5s ease;
    -o-transition: background 0.5s ease, color 0.5s ease;
}

@media only screen and (max-width:1024px) {
    .link-container .inner-container>div {
        padding: 8px 12px;
    }

    .link-container .inner-container .iconfont {
        padding: 8px !important;
    }
}

.link-container.white .inner-container>div {
    background: #fff;
    color: #da251d;
}

.link-container .inner-container .iconfont {
    margin-left: 1px;
    padding: 10px;
}

.link-container:hover .inner-container>div {
    background: #e0e0e0;
    color: #da251d;
}

.link-container.white:hover .inner-container>div {
    background: #da251d;
    color: #fff;
}


.bg-img.blur {
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    background-position: right;
}

a:hover .bg-img.blur {
    opacity: 0.8;
}

.bg-img-container {
    overflow: hidden;
}

a .bg-img:not(.blur) {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transition: transform 1.5s ease;
    -webkit-transition: transform 1.5s ease;
    -moz-transition: transform 1.5s ease;
    -ms-transition: transform 1.5s ease;
    -o-transition: transform 1.5s ease;
}

.product-details-swiper-area .product-details-swiper .bg-img-container .bg-img:not(.blur) {
    transition: all 1.5s ease;
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
}

.home .products-list-area .product-item:hover .bg-img:not(.blur),
.home .about-industry-info-area .industry-container .swiper-slide>a:hover .bg-img:not(.blur),
.home .topics-area .swiper-slide>a:hover .bg-img:not(.blur),
.products-info-area .product-info-item a:hover .bg-img:not(.blur),
.product-details-swiper-area .product-details-swiper .bg-img-container:hover .bg-img:not(.blur),
.videos-center .lg-img-swiper a:hover .bg-img:not(.blur),
.video-item a:hover .bg-img:not(.blur),
.server-list-area .server-item a:hover .bg-img:not(.blur),
.news-item a:hover .bg-img:not(.blur),
.technique-share-item a:hover .bg-img:not(.blur),
.application-item .left-area.bg-img-container:hover .bg-img:not(.blur),
.application-item .right-area .img-area .bg-img-container:hover .bg-img:not(.blur) {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

/* 下拉框基本样式 */

.selector-area {
    position: relative;
    cursor: pointer;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selector-area li,
.selector-area .selected-item .selected-item-title {
    font-size: 14px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.selector-area .selected-item .selected-item-title {
    margin-right: 10px;
}


.selector-area .selected-item .pop-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.selector-area .selected-item .iconfont {
    font-size: 16px;
    display: block;
}

.selector-area .selected-item .iconfont:before {
    content: "\e65c";
}

.selector-area ul {
    position: absolute;
    z-index: 2;
    background: #fff;
    width: 100%;
    display: none;
    overflow: hidden;
}

.selector-area li:hover {
    color: #da251d;
    text-decoration: underline;
}

.selector-area li:hover a {
    color: #da251d !important;
}

.unfold .selected-item .iconfont {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}



/* 内页-面包屑/搜索框样式 */
.breadcrumb-filter-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-filter-area .breadcrumb {
    margin: 0.24rem 0;
}

.breadcrumb-filter-area .breadcrumb .container {
    width: auto;
    max-width: 100%;

}

.breadcrumb-filter-area .filter-area {
    width: 65.55%;
    max-width: 65.55%;
}

.filter-area .selector-list-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.filter-area .selector-area {
    width: 25%;
    min-width: 2.3rem;
    border: 1px solid #e0e0e0;
}

.filter-area .selector-area ul {
    border: 1px solid #e0e0e0;
    width: calc(100% + 2px);
    left: -1px;
}

.filter-area .selected-item,
.filter-area .selector-area li {
    line-height: 44px;
    padding: 0 16px;
}

.filter-area .search-area {
    width: 75%;
    position: relative;
    margin: 0;
    margin-left: -1px;
}

.filter-area .search-area input {
    width: 100%;
    line-height: 44px;
    outline: none;
    border: 1px solid #e0e0e0;
    margin: 0;
    padding: 0 1.32rem 0 16px;
    font-size: 14px;
}

.filter-area .search-area input::-webkit-input-placeholder {
    color: #b8b8b8;
}

.filter-area .search-area input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #b8b8b8;
}

.filter-area .search-area input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #b8b8b8;
}

.filter-area .search-area input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #b8b8b8;
}

.filter-area .search-area button {
    height: 100%;
    width: 1.15rem;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    outline: none;
    background: #da251d;
    color: #fff;
    cursor: pointer;
}

@media only screen and (max-width:1400px) {
    .breadcrumb-filter-area {
        flex-direction: column;
    }

    .breadcrumb-filter-area>div {
        width: 100% !important;
        max-width: 100% !important;
    }

    .breadcrumb-filter-area .breadcrumb {
        margin: 0;
    }

    .breadcrumb-filter-area .filter-area {
        margin: 0.24rem 0;
    }
}

@media only screen and (max-width:480px) {
    .breadcrumb .container {
        flex-wrap: wrap;
    }
}

/* 仅搜索无筛选 */
.breadcrumb-filter-area .filter-area.only-search-area .search-area {
    width: 100%;
}

/* 内页右下角带点的标题样式  */
.area-title.with-point {
    font-size: 0.36rem;
}

.area-title.with-point .text {
    display: inline-block;
    position: relative;
}

@media only screen and (max-width:1024px) {
    .area-title.with-point .text {
        font-size: 22px;
    }
}

@media only screen and (max-width:768px) {
    .recruit-list-area .recruit-item {
        width: 100%;
    }
}

.area-title.with-point .text::after {
    content: "";
    display: block;
    width: 0.08rem;
    height: 0.08rem;
    position: absolute;
    bottom: 0.3em;
    right: -16px;
    background: #da251d;
    min-width: 6px;
    min-height: 6px;
}

/* 内页下方带虚线的标题样式  */
.area-title.with-dotted .text {
    width: 92%;
    max-width: 1440px;
    margin: 0.3rem auto;
    font-size: 0.36rem;
    text-align: center;
}

.area-title.with-dotted .dotted-line {
    width: 28px;
    height: 3px;
    background: url(/phone/images/bgimg8.png) repeat;
    margin: 0 auto;
}

.area-title.with-dotted.white .dotted-line {
    background: url(/phone/images/bgimg16.png) repeat;
}

@media only screen and (max-width:1024px) {
    .area-title.with-dotted .text {
        font-size: 22px;
    }
}

/* 点阵虚线 */
.point-line {
    height: 5px;
    background: url(/phone/images/pointLineBgimg.png) repeat;
    margin: 0 auto;
}

/* 内页，带2张（一张极光，一张点阵）背景图的样式 */
.with-aurora-point-background {
    position: relative;
    /* overflow: hidden; */
}

.with-aurora-point-background .bg-img.aurora {
    height: 3rem;
    top: -0.24rem;
    z-index: -1;
    opacity: 0.4;
}


.with-aurora-point-background .bg-img.point {
    height: 80vh;
    bottom: 0;
    top: auto;
    z-index: -1;
}

/* 内页，带点阵背景图的样式 */
.with-point-background {
    position: relative;
    overflow: hidden;
}

.with-point-background .bg-img.point {
    height: 8.5rem;
    width: 70%;
    top: -0.24rem;
    left: auto;
    right: 0;
    z-index: -1;
}



/* 列表分页样式 */
.all-Page-box {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

.all-Page-box .f-right,
.all-Page-box .select {
    display: none;
}

.all-Page-box .first,
.all-Page-box .last,
.all-Page-box .song {
    font-size: 12px !important;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #da251d;
}

.all-Page-box .first>span::after {
    content: "\e601";
    font-family: "iconfont";
}

.all-Page-box .song:nth-child(2)>span::after {
    content: "\e604";
    font-family: "iconfont";
}

.all-Page-box .btn:nth-last-child(4)>span::after {
    content: "\e603";
    font-family: "iconfont";
}

.all-Page-box .last>span::after {
    content: "\e602";
    font-family: "iconfont";
}

.all-Page-box .song+.song {
    margin-left: -1px;
}

.all-Page-box .song.null {
    opacity: 0.5;
}

.all-Page-box .btn {
    padding: 10px;
    font-size: 16px;
}

.all-Page-box .btn:hover {
    color: #da251d;
}

.all-Page-box .btn.on {
    color: #da251d;
    position: relative;
}

.all-Page-box .btn.on::after {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    background: #da251d;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate3d(-45%, -10px, 0);
    -webkit-transform: translate3d(-45%, -10px, 0);
    -moz-transform: translate3d(-45%, -10px, 0);
    -ms-transform: translate3d(-45%, -10px, 0);
    -o-transform: translate3d(-45%, -10px, 0);
}

.all-Page-box .btn:nth-last-child(4),
.all-Page-box .btn:nth-child(3) {
    margin-left: 16px;
}


/* 导航栏样式 */

.btn-menu {
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    display: inline-block;
    width: 15px;
    height: 12px;
}

.btn-menu span {
    position: absolute;
    display: block;
    height: 3px;
    width: 120%;
    background: #fff;
    -webkit-transition: top 0.2s 0.25s, opacity 0.2s 0.25s, transform 0.2s 0s, -webkit-transform 0.2s 0s;
    transition: top 0.2s 0.25s, opacity 0.2s 0.25s, -webkit-transform 0.2s 0s;
    -o-transition: top 0.2s 0.25s, opacity 0.2s 0.25s, transform 0.2s 0s, -webkit-transform 0.2s 0s;
    transition: top 0.2s 0.25s, opacity 0.2s 0.25s, transform 0.2s 0s;
    transition: top 0.2s 0.25s, opacity 0.2s 0.25s, transform 0.2s 0s, -webkit-transform 0.2s 0s;
    -moz-transition: top 0.2s 0.25s, opacity 0.2s 0.25s, transform 0.2s 0s, -webkit-transform 0.2s 0s;
    -ms-transition: top 0.2s 0.25s, opacity 0.2s 0.25s, transform 0.2s 0s, -webkit-transform 0.2s 0s;
}

.nav-area:hover .btn-menu span {
    background: #242424 !important;
}


.btn-menu-active span {
    -webkit-transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s;
    transition: background 0.2s, top 0.2s, opacity 0.2s, -webkit-transform 0.2s 0.25s;
    -o-transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s;
    transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s;
    transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s, -webkit-transform 0.2s 0.25s;
    -moz-transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s;
    -ms-transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s;
}

.btn-menu span:nth-child(1) {
    top: 0;
}

.btn-menu span:nth-child(2) {
    top: 6px;
}

.btn-menu span:nth-child(3) {
    top: 12px;
}

.btn-menu-active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btn-menu span:nth-child(2) {
    top: 6px;
}

.btn-menu-active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn-menu-active span:nth-child(3),
.btn-menu-active span:nth-child(1) {
    top: 7px;
}

.btn-menu-active span:nth-child(2) {
    opacity: 0;
}

.nav-menu {
    position: fixed;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 0.9rem;
    min-height: 60px;
    transition: background 0.5s ease;
    -webkit-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -ms-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
}


.nav-menu .left-area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-menu .left-area .btn-menu-container {
    width: 0.8rem;
    height: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.nav-menu .left-area .logo {
    height: 0.46rem;
    min-height: 36px;
}

.nav-menu .left-area .logo>img {
    height: 100%;
}

.nav-menu .left-area .slogon {
    color: #f00;
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
    display: none;
}

.nav-menu .right-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu .right-area .btn-menu-container {
    display: none;
}

.nav-menu .right-area .nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu .right-area .nav-list li {
    position: relative;
    font-size: 16px;
}

.nav-menu .right-area .nav-list li a {
    color: #fff;
    padding: 0 0.25rem;
    line-height: 0.9rem;
    font-weight: bold;
}

.nav-menu .right-area .nav-list li .pop {
    position: absolute;
}

.nav-menu .right-area .nav-list li.selected .pop {
    z-index: 2;
}

.nav-menu .right-area .quick-links {
    font-size: 16px;
    line-height: 1.2;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}

.nav-menu .right-area .quick-links a {
    color: #fff;
    line-height: calc(0.45rem - 1px);
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    margin-bottom: -1px;
    border-top: none;
}

.nav-menu .right-area .quick-links a+a {
    border-bottom: none;
}

.nav-menu .right-area .quick-links a img {
    margin-right: 10px;
}

.nav-menu .right-area .quick-links a img.white {
    display: none;
}

.nav-menu .right-area .search-button {
    padding: 0.2rem 0.3rem;
    color: #fff;
    font-size: 20px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.nav-menu .right-area .nav-list .nav-item>a::before,
.nav-menu .right-area .nav-list .nav-item>a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    opacity: 0;
    bottom: -2px;
    height: 2px;
    background: #f00;
    left: 0;
    text-align: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.nav-menu .right-area .nav-list .nav-item>a::before {
    width: 0;
    left: auto;
    right: 0;

}

.nav-menu .right-area .nav-list .nav-item:hover>a::before,
.nav-menu .right-area .nav-list .nav-item:hover>a::after,
.nav-menu .right-area .nav-list .nav-item.selected>a::before,
.nav-menu .right-area .nav-list .nav-item.selected>a::after {
    width: calc(100% - 10px);
    opacity: 1;

}

.nav-menu .right-area .nav-list .nav-item:hover>a::before,
.nav-menu .right-area .nav-list .nav-item.selected>a::before {
    width: 5px;
}

.nav-menu .right-area .nav-list .pop {
    left: 0;
    top: calc(100% + 3px);
    background: rgba(0, 0, 0, .75);
    width: auto;
    display: none;
}

.nav-menu .right-area .nav-list .pop a {
    line-height: 0.5rem !important;
    padding: 0 0.3rem;
    display: block;
    font-weight: normal;
    font-size: 14px;
    white-space: nowrap;
    min-width: 2.8rem;
}

.nav-menu .right-area .nav-list .pop a:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.nav-menu .right-area .nav-list .pop a:hover {
    background: rgba(255, 255, 255, .2);
    color: #f00;
}

.nav-menu.inside {
    background: #fff;
    border-bottom: 1px solid rgba(229, 229, 229, 0.9);
}


.nav-menu.inside .btn-menu span {
    background: #242424;
}

.nav-menu.inside .right-area {
    transition: background 0.5s ease;
    -webkit-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -ms-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
}

.nav-menu.inside .right-area .quick-links a,
.nav-menu.inside .right-area .nav-list li>a {
    color: #242424;
    border-color: rgba(229, 229, 229, 0.9);
}

.nav-menu.inside .right-area .search-button,
.nav-menu.inside .right-area .nav-list li.selected>a {
    color: #da251d;
}

.nav-menu.inside .right-area .nav-list .nav-item>a::before,
.nav-menu.inside .right-area .nav-list .nav-item>a::after {
    display: none;
}

.nav-menu.inside .right-area .nav-list li a+a {
    border-color: rgba(45, 53, 63, 0.8)
}

.nav-menu.inside .right-area .nav-list .pop {
    top: calc(100% + 1px)
}

.nav-menu.inside .right-area .nav-list .pull::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.75);
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    opacity: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.nav-menu.inside .right-area .nav-list .pull:hover::after {
    opacity: 1;
}

.nav-menu .float-area {
    position: absolute;
    right: 10px;
    bottom: -10px;
    transform: translate3d(120%, 100%, 0);
    -webkit-transform: translate3d(120%, 100%, 0);
    -moz-transform: translate3d(120%, 100%, 0);
    -ms-transform: translate3d(120%, 100%, 0);
    -o-transform: translate3d(120%, 100%, 0);
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
}

.nav-menu .float-area.show {
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);

}

.nav-menu .float-area input {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    width: 300px;
    line-height: 40px;
    padding: 0 40px 0 14px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    font-size: 14px;
}

.nav-menu.inside .float-area input {
    border-color: rgba(229, 229, 229, 0.9) !important;
}

.nav-menu .float-area button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    height: 100%;
    width: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.nav-menu.inside .float-area input {
    background: #fff;
    color: #242424;
}

.nav-menu.inside .float-area button {
    color: #da251d;
}


.nav-menu .float-area input::-webkit-input-placeholder {
    color: #fff;
}

.nav-menu .float-area input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
}

.nav-menu .float-area input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
}

.nav-menu .float-area input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}


.nav-menu.inside .float-area input::-webkit-input-placeholder {
    color: #b8b8b8;

}

.nav-menu.inside .float-area input::-moz-placeholder {
    /* MoziFirefox 19+ */
    color: #b8b8b8;

}

.nav-menu.inside .float-area input:-moz-placeholder {
    /* MoziFirefox 4 to 18 */
    color: #b8b8b8;

}

.nav-menu.inside .float-area input:-ms-input-placeholder {
    /* Inte Explorer 10-11 */
    color: #b8b8b8;

}


@media only screen and (max-width:1600px) {
    .nav-menu .right-area .nav-list .pop a {
        line-height: 40px !important;
    }
}

@media only screen and (max-width:1024px) {
    .nav-menu .left-area .logo {
        margin-left: 10px;
    }

    .nav-menu {
        border: none;
    }

    .nav-menu .left-area .btn-menu-container,
    .nav-menu .right-area .nav-list {
        display: none;
    }

    .nav-menu .left-area .logo {
        margin-left: 20px;
    }

    .nav-menu .right-area .quick-links {
        flex-direction: row;
        margin-left: 10px;
    }

    .nav-menu .right-area .quick-links a {
        border: none;
        padding: 10px;
        color: #fff !important;
    }

    .nav-menu .right-area .btn-menu-container {
        height: 100%;
        display: block;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        transform: translate(0, -2px);
        -webkit-transform: translate(0, -2px);
        -moz-transform: translate(0, -2px);
        -ms-transform: translate(0, -2px);
        -o-transform: translate(0, -2px);
    }

    .nav-menu.inside .right-area .btn-menu-container {
        background: #c70800;
        border-left: 1px solid #cf534d;
    }

    .nav-menu.inside .btn-menu span {
        background: #fff;
    }


    .nav-menu.inside .right-area .quick-links a img.red {
        display: none;
    }

    .nav-menu.inside .right-area .quick-links a img.white {
        display: block;
        height: 16px;
    }

    .nav-menu.inside {
        border-bottom: none;
    }

    .nav-menu.inside .right-area {
        height: 100%;
        background: #b90800;
    }

    .nav-menu.inside .right-area .search-button {
        color: #fff;
    }
}

@media only screen and (max-width:480px) {
    .nav-menu .right-area .quick-links a>span {
        display: none;
    }

    .nav-menu .right-area .quick-links a img {
        margin: 0;
    }

    .nav-menu .right-area .search-button {
        color: #da251d;
        font-size: 16px;
    }
}

/* 手机视口 底部nav样式 */
.bottom-nav {
    position: fixed;
    z-index: 100;
    width: 100%;
    bottom: -1px;
    left: 0;
    background: #fff;
}

.home.bottom-nav .nav-item:first-child {
    display: none;
}

.bottom-nav .nav-list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-top: 1px solid #d1d1d1;
}

.bottom-nav .nav-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.bottom-nav .nav-item>a {
    color: #8b8b8b;
    padding: 8px 0 8px 0;
}

.bottom-nav.fullScreenPhone .nav-item>a {
    padding: 6px 0 20px 0;
}

.bottom-nav .nav-item.hover>a {
    color: #da251d;
}

.bottom-nav .nav-item .iconfont {
    font-size: 24px;
    line-height: 1.1;
}

.bottom-nav .nav-item .title {
    font-size: 12px;
    /* font-weight: bold; */
}

.bottom-nav .pull .pop {
    background: rgba(0, 0, 0, .75);
    color: #fff;
    position: absolute;
    width: auto;
    left: 50%;
    bottom: 100%;
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    display: none;
}

.bottom-nav .pull .pop.qr-code {
    width: 160px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 10px 0 rgba(45, 53, 63, 0.2);
    transform: translate3d(-50%, -12px, 0);
    -webkit-transform: translate3d(-50%, -12px, 0);
    -moz-transform: translate3d(-50%, -12px, 0);
    -ms-transform: translate3d(-50%, -12px, 0);
    -o-transform: translate3d(-50%, -12px, 0);
}

.bottom-nav .pull .pop.qr-code::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #fff;
    left: 50%;
    bottom: 0;
    transform: translate3d(-50%, 99%, 0);
    -webkit-transform: translate3d(-50%, 99%, 0);
    -moz-transform: translate3d(-50%, 99%, 0);
    -ms-transform: translate3d(-50%, 99%, 0);
    -o-transform: translate3d(-50%, 99%, 0);
}

.bottom-nav .pull .pop.qr-code img {
    width: 100%;
}

.bottom-nav .pull.hover .pop {
    display: block;
}

.bottom-nav .pull .pop a {
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    padding: 18px 24px;
    font-size: 14px;
}

.bottom-nav .pull .pop a+a {
    border-top: 1px solid #666;
}

.bottom-nav .pull .pop a .iconfont {
    font-size: 18px;
    margin-right: 5px;
}



/* 页脚区域样式 */
.footer {
    background: #363636;
    color: #fff;
}

.footer::before {
    content: "";
    display: table;
}



.footer .outer-container {
    width: 92%;
    max-width: 1440px;
    margin: 0.46rem auto;

}

.footer .logo-share-area {
    margin: 0.46rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.footer .logo img {
    max-height: 46px;
    max-width: 100%;
}

.footer .share-area {
    height: 46px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer .share-area .title {
    font-size: 14px;
    opacity: 0.5;
    margin-right: 10px;
}

.footer .share-area .share-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.footer .share-area .share-list a {
    color: #fff !important;
    font-size: 22px;
    line-height: 44px !important;
    width: 44px !important;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .3);
    margin: 0 10px !important;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;

}

.footer .share-area .bdsharebuttonbox a {
    background: none !important;
    height: auto !important;
}

.footer .share-area .share-list a:hover {
    border: 1px solid rgba(218, 37, 29, .3);
}


.footer .share-area .share-list li {
    position: relative;
}

.footer .share-area .share-list li:hover a {
    transform: translate3d(0, -10px, 0);
    -webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    -o-transform: translate3d(0, -10px, 0);
}

.footer .share-area .share-list li .pop {
    display: none;
    background: #fff;
    padding: 10px;
    position: absolute;
    z-index: 3;
    width: 160px;
    bottom: 70px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    box-shadow: 0 0 10px 0 rgba(45, 53, 63, 0.2);
}

.footer .share-area .share-list li .pop::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #fff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate3d(-50%, calc(100% - 1px), 0);
    -webkit-transform: translate3d(-50%, calc(100% - 1px), 0);
    -moz-transform: translate3d(-50%, calc(100% - 1px), 0);
    -ms-transform: translate3d(-50%, calc(100% - 1px), 0);
    -o-transform: translate3d(-50%, calc(100% - 1px), 0);
}

.footer .share-area .share-list li.pull:hover .pop {
    display: block;
}

.footer .share-area .share-list li .pop img {
    width: 100%;
}


.footer .share-area li:hover .iconfont {
    color: #da251d !important;
    border-color: #da251d !important;
    transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    -o-transform: translate(0, -10px);
}




.footer .links-area {
    padding-top: 0.46rem;
    border-top: 1px solid #4a4a4a;
    font-size: 14px;

}

.footer .links-area a,
.footer .links-area {
    line-height: 2;
    color: rgba(255, 255, 255, .5)
}

.footer .links-area a {
    padding: 2px 5px;
}

.footer .links-area .title {
    opacity: 1;
    color: #fff;
    line-height: 2.2;
}

.footer .links-area::after {
    content: "";
    display: block;
    clear: both;
}

.footer .links-area .right-area,
.footer .links-area .left-area {
    width: 50%;
    float: left;
    display: flex;
    justify-content: flex-start;
}

.footer .links-area .right-area {
    float: right;
}



.footer .links-area .left-area>div+div {
    border-left: 1px solid #4a4a4a;
}

.footer .links-area .left-area>div {
    padding: 0 0.5rem;
    width: 50%;
}

.footer .links-area .left-area>div:nth-child(1) {
    padding-left: 0;
}

.footer .links-area .right-area {
    justify-content: flex-end;
}

.footer .links-area .right-area ul {
    margin-left: 1.2rem;
}

.footer .links-area .right-area li:nth-child(2) {
    margin-top: 0.1rem;
}

.footer .friend-links{
    background:#323232;
    padding-top: 0.24rem;
}
.footer .friend-links .outer-container {
    margin-bottom: 0;
    margin-top: 0;
}

.footer .friend-links .outer-container  .title{
    font-size: 14px;
}
.footer .friend-links .outer-container  .link-list{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    line-height: 2;
}
.footer .friend-links .outer-container  .link-list a{
font-size: 14px;
color:rgba(255, 255, 255, .5);
position: relative;
margin-left: 20px;;
}
.footer .friend-links .outer-container  .link-list a+a::after{
      content: "";
      display: block;
      width:1px;
      height: 12px;
      position: absolute;
      left:-10px;
      top:50%;
      background: rgba(255, 255, 255, .5);
      transform: translate(-50%,-50%);
      -webkit-transform: translate(-50%,-50%);
      -moz-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
      -o-transform: translate(-50%,-50%);
}

.footer .copy {
    background: #323232;
    padding-bottom: 0.22rem;
    padding-top: 0.1rem;
}

.footer .copy .outer-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 14px;
}



.footer .copy .outer-container .text-container * {
    display: inline-block;
    color: rgba(255, 255, 255, .2);
    line-height: 2;
}

.footer a:hover {
    color: #da251d !important;
    opacity: 1;
}

@media only screen and (min-width:1921px) {
    .footer .links-area .right-area ul {
        margin-left: 0.7rem;
    }
}

@media only screen and (max-width:1600px) {
    .footer .links-area .right-area ul {
        margin-left: 0.8rem;
    }

    .footer .links-area .left-area>div {
        padding: 0 0.3rem;
    }
}

@media only screen and (max-width:1200px) {
    .footer .links-area .right-area ul {
        margin-left: 0.6rem;
    }

    .footer .links-area .left-area>div {
        padding: 0 0.2rem;
    }

    .footer .copy .outer-container {
        flex-direction: column;
    }

    .footer .copy .outer-container .text-container {
        text-align: center;
    }
}

@media only screen and (max-width:1024px) {
    .footer .links-area>div {
        float: none !important;
        width: 100% !important;
        justify-content: space-between;
    }

    .footer .links-area .left-area>div {
        width: 1000px;
        padding: 0 0.6rem;
    }

    .footer .copy .left-area,
    .footer .links-area .left-area {
        display: none;
    }

    .footer .links-area .right-area {
        flex-direction: column;
        margin-top: 0;
    }

    .footer .links-area {
        padding-top: 0;
    }

    .footer .links-area .right-area ul {
        margin-left: 0;
        border-bottom: 1px solid #4a4a4a;
        padding: 0.1rem 0;
    }

    .footer .links-area .right-area ul li:first-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }



    .footer .links-area .right-area ul li:first-child::after {
        content: "\e626";
        font-family: "iconfont";
        font-size: 14px;
        cursor: pointer;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    .footer .links-area .right-area ul li:hover:first-child::after {
        color: #da251d;
    }

    .footer .links-area .right-area ul.close li:first-child::after {
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
    }

    .footer .share-area .title,
    .footer .links-area .right-area ul li:not(:first-child) {
        display: none;
    }
}

@media only screen and (max-width:768px) {
    .footer .logo-share-area {
        flex-direction: column;
    }

    .footer .share-area .share-list li:first-child a {
        margin-left: 0;
    }

    .footer .share-area {
        margin: 0.5rem 0 0.3rem;
    }


}

@media only screen and (max-width:480px) {
    .footer .links-area .left-area {
        flex-direction: column;
    }

    .footer .links-area .left-area>div {
        width: 100%;
        margin: 0;
        padding: 0.3rem 0;
        border-left: none !important;
    }

    .footer .copy {
        padding-bottom: 2.2rem;
    }
}


/* 在线留言弹出框 */
.message-area.float-area {
    display: none;
    position: fixed;
    width: 40%;
    left: 50%;
    top: 50%;
    z-index: 100;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    padding: 0.3rem;
    background-color: rgba(229, 229, 229, 0.95);
    background-image: none !important;
    box-shadow: 0 0 10px 0 rgba(45, 53, 63, 0.2);
}

.message-area.float-area .outer-container .left-area {
    width: 100%;
    max-width: 100%;
}

.message-area.float-area .outer-container button {
    margin-left: auto;
    margin-right: auto;
}

.message-area.float-area .close-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    font-size: 20px;
}

.message-area.float-area .close-button:hover {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}

/* 侧边栏 */
.side-nav {
    position: fixed;
    top: 50%;
    /* right: 0; */
    left: calc(100% - 50px);
    z-index: 100;
    display: none;
    width: 130px;
}


.side-nav a {
    position: relative;
    padding-right: 16px;
    font-size: 14px;
    background: #174573;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2px 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    color: #fff;
    text-align: center;
    transform: translate3d(50px, 0, 0);
    -webkit-transform: translate3d(50px, 0, 0);
    -moz-transform: translate3d(50px, 0, 0);
    -ms-transform: translate3d(50px, 0, 0);
    -o-transform: translate3d(50px, 0, 0);
}

.side-nav a:nth-child(2) {
    transition-delay: 0.1s;
}

.side-nav a:nth-child(3) {
    transition-delay: 0.2s;
}

.side-nav a:nth-child(4) {
    transition-delay: 0.3s;
}


.side-nav.show a {
    transition-delay: 0s;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

.side-nav .iconfont {
    font-size: 22px;

}

.side-nav a>div:first-child {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.side-nav a .top-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.4 !important;
}

.side-nav a:hover {
    transform: translate3d(calc(-100% + 50px), 0, 0);
    -webkit-transform: translate3d(calc(-100% + 50px), 0, 0);
    -moz-transform: translate3d(calc(-100% + 50px), 0, 0);
    -ms-transform: translate3d(calc(-100% + 50px), 0, 0);
    -o-transform: translate3d(calc(-100% + 50px), 0, 0);
    background: #da251d;
}

.side-nav a .pop {
    display: none;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translate3d(-100%, -50%, 0);
    -webkit-transform: translate3d(-100%, -50%, 0);
    -moz-transform: translate3d(-100%, -50%, 0);
    -ms-transform: translate3d(-100%, -50%, 0);
    -o-transform: translate3d(-100%, -50%, 0);
    padding: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    background: #fff;
}

.side-nav a .pop::after {
    content: "";
    display: block;
    width: 0;
    top: 0;
    border: 10px solid transparent;
    border-left-color: #fff;
    top: 50%;
    right: 1px;
    position: absolute;
    transform: translate3d(100%, -50%, 0);
    -webkit-transform: translate3d(100%, -50%, 0);
    -moz-transform: translate3d(100%, -50%, 0);
    -ms-transform: translate3d(100%, -50%, 0);
    -o-transform: translate3d(100%, -50%, 0);
}

.side-nav a.pull:hover .pop {
    display: block;
}

.side-nav a .pop>img {
    width: 160px;
}

@media only screen and (max-width:480px) {

    .side-nav {
        display: none !important;
    }
}


/* 网站地图 */
.maps-area {
    position: fixed;
    z-index: 102;
    width: 100%;
    height: 100vh;
    background: #f5f5f5;
    top: 0;
    left: 0;
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transition: all 1s ease 0.1s;
    -webkit-transition: all 1s ease 0.1s;
    -moz-transition: all 1s ease 0.1s;
    -ms-transition: all 1s ease 0.1s;
    -o-transition: all 1s ease 0.1s;
}

.maps-area.show {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

.maps-area .background-img {
    position: absolute;
    z-index: -1;
    width: 4.1rem;
    top: 0;
    right: 0;
    height: 100%;
    background-size: cover;
}

.maps-area .logo {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 0.9rem;
    background: #fff;
    min-height: 60px;
}


.maps-area .logo a {
    margin-left: 4%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0.46rem;
    min-height: 36px;
}

.maps-area .logo a>img {
    height: 100%;
}

.maps-area .close-botton {
    position: absolute;
    top: 0;
    right: 0;
    background: #da251d;
    width: 0.8rem;
    height: 0.9rem;
    font-size: 30px;
    color: #fff;
    text-align: center;
    min-height: 60px;
    min-width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maps-area .outer-container {
    width: 92%;
    max-width: 1440px;
    height: calc(100% - 0.9rem);
    margin: 0.9rem auto 0;
    overflow: hidden;
}

.maps-area .inner-container {
    width: calc(100% + 25px);
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
}

.maps-area .outer-container .section-item+.section-item {
    border-top: 1px solid #dcdcdc;
}

.maps-area .outer-container .section-item {
    padding: 0.7rem 0;
    display: flex;
    justify-content: flex-start;
}

.maps-area .outer-container a {
    padding: 10px 0;
}

.maps-area .outer-container a:hover {
    color: #da251d;
}

.maps-area .outer-container .section-item .cut-line {
    display: block;
    margin: 0.1rem 0;
}

.maps-area .outer-container .section-item .section-title {
    width: 24.3%;
    font-size: 0.24rem;
    font-weight: bold;
}

.maps-area .outer-container .section-item .section {
    margin: 0 -0.5rem;
    width: calc(75.7% + 1rem);
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.maps-area .outer-container .section-item .section>div {
    width: calc(100% / 4 - 0.5rem);
    margin: 0 0.5rem 0.6rem 0;
}



.maps-area .outer-container .section-item .section .title {
    font-size: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dcdcdc;
    font-weight: 500;
}

.maps-area .outer-container .section-item .section .title+ul {
    margin-top: 16px;
    font-size: 16px;
}

@media only screen and (max-width:1600px) {
    .maps-area .outer-container .section-item .section-title {
        width: 20%;
    }

    .maps-area .background-img {
        width: 4.1rem;
    }

    .maps-area .outer-container .section-item .section-title {
        font-size: 22px;
    }

}

@media only screen and (max-width:1400px) {
    .maps-area .outer-container .section-item .section-title {
        font-size: 20px;
    }
}

@media only screen and (max-width:1200px) {
    .maps-area .outer-container .section-item .section>div {
        width: calc(100% / 3 - 0.5rem)
    }

    .maps-area .background-img {
        width: 5.1rem;
    }
}

@media only screen and (max-width:1024px) {
    .maps-area .outer-container .section-item .section>div {
        width: calc(100% / 2 - 0.5rem)
    }

    .maps-area .background-img {
        width: 7.8rem;
    }

}

@media only screen and (max-width:768px) {
    .maps-area .outer-container {
        margin-top: 60px;
        padding-bottom: 30px;
    }

    .maps-area .outer-container .section-item {
        flex-direction: column;
        align-items: start;
        padding: 0.2rem 0;
    }

    .maps-area .outer-container .section-item .section>div {
        margin: 0 auto;
        padding: 0.2rem 0;
    }

    .maps-area .outer-container .section-item .section>div+div {
        border-top: 1px solid #dcdcdc;
    }

    .maps-area .outer-container .section-item>div {
        width: 100% !important;
    }

    .maps-area .outer-container .section-item .section {
        margin-top: 0.2rem;
        width: 100%;
        margin-left: 0;
    }

    .maps-area .outer-container .section-item .section .title {
        padding-bottom: 0px;
    }


    .maps-area .outer-container .section-item .section .title+ul {
        margin-top: 10px;
    }

    .maps-area .outer-container a {
        padding: 5px 0;
    }

    .maps-area .outer-container .section-item .section .title {
        border: none;
    }
}

@media only screen and (max-width:480PX) {
    .maps-area .outer-container .section-item .section .title+ul {
        font-size: 14px;
    }

    .maps-area .outer-container .section-item .section>div {
        width: calc(100% - 0.5rem)
    }

    .maps-area .outer-container .section-item .section-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 30px;
        width: 100%;
    }

    .maps-area .outer-container a {
        display: inline-block;
    }

    .maps-area .outer-container .section-item .section-title::after {
        content: "\e626";
        font-family: "iconfont";
        font-size: 14px;
        cursor: pointer;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    .maps-area .outer-container .section-item.close .section-title::after {
        content: "\e626";
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
    }

    .maps-area .outer-container .section-item.none .section-title::after {
        display: none !important;
    }

    .maps-area .outer-container .section-item .section-title+.section {
        display: none;
    }
}

/* 面包屑 */

.breadcrumb {
    margin: 0.24rem auto;
}

.breadcrumb .container {
    width: 92%;
    max-width: 1440px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* flex-wrap: wrap; */
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb .container>* {
    margin: 0 5px;
    font-size: 14px;
    color: #666;
}

.breadcrumb .container>a:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb .container .iconfont {
    font-size: 20px;
}

.breadcrumb .container>a:hover,
.breadcrumb .container .iconfont {
    color: #da251d;
}


/* banner样式 */

.banner-swiper .scroll-remind {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    z-index: 55;
    color: #fff;
    transform: rotate(90deg) translateX(20%);
    -webkit-transform: rotate(90deg) translateX(20%);
    -moz-transform: rotate(90deg) translateX(20%);
    -ms-transform: rotate(90deg) translateX(20%);
    -o-transform: rotate(90deg) translateX(20%);
    transform-origin: top right;

    right: 0;
    bottom: 0;
}

.banner-swiper .scroll-remind .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 0.8rem;
    font-size: 12px;
}

.banner-swiper .scroll-remind .iconfont {
    font-size: 22px;
    margin-left: 10px;
}

.banner-swiper .scroll-remind:hover {
    color: #da251d;
}




.banner-swiper .bg-img-container {
    height: 100vh;
}

@media only screen and (max-width:480px) {
    .banner-swiper .bg-img-container {
        height: 70vh;
    }
}

.banner-swiper .bg-img-container .bg-img.phone {
    display: none;
}

.banner-swiper .bg-img-container .bg-img.pc {
    display: block;
}

.banner-swiper .title-area {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    color: #fff;
    width: 92%;
    max-width: 1440px;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
}


.banner-swiper .title-area .sub-title {
    font-size: 0.36rem;
}


.banner-swiper .title-area .title {
    font-size: 0.56rem;
    margin-top: 0.1rem;
}



.banner-swiper .title-area .sub-title,
.banner-swiper .title-area .title,
.banner-swiper .title-area .cut-line,
.banner-swiper .title-area .chs-title,
.banner-swiper .title-area .eng-title {
    transition: all 1.5s ease;
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transform: translate3d(0, 30px, 0);
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
    opacity: 0;
    visibility: hidden;
}

.banner-swiper .title-area .chs-title,
.banner-swiper .title-area .sub-title {
    transition-delay: 0.5s;
}

.banner-swiper .title-area .eng-title,
.banner-swiper .title-area .title {
    transition-delay: 1.5s;
}

.banner-swiper .title-area .cut-line {
    transition-delay: 2s;
}

.banner-swiper .swiper-slide-active .title-area .chs-title,
.banner-swiper .swiper-slide-active .title-area .eng-title,
.banner-swiper .swiper-slide-active .title-area .cut-line,
.banner-swiper .swiper-slide-active .title-area .title,
.banner-swiper .swiper-slide-active .title-area .sub-title {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible
}

.banner-swiper .swiper-slide-active .title-area .sub-title {
    opacity: 0.7;
}

.banner-swiper .swiper-slide-active .title-area .eng-title {
    opacity: 0.35;
}







.banner-swiper .title-area .text {
    display: none;
}

.banner-swiper .title-area.center {
    text-align: center;
}

.banner-swiper .title-area.right {
    text-align: right;
}

.banner-swiper .swiper-pagination {
    margin-bottom: 0.5rem;
}

.banner-swiper .swiper-pagination-bullet {
    margin: 0 5px;
    width: .65rem;
    height: 3px;
    background: #fff;
    opacity: 1;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

@media only screen and (min-width:1921px) {
    .banner-swiper .title-area .title {
        font-size: 0.4rem;
    }

    .banner-swiper .title-area .sub-title {
        font-size: 0.3rem;
    }
}

@media only screen and (max-width:768px) {
    .banner-swiper .bg-img-container .bg-img.phone {
        display: block;
    }

    .banner-swiper .bg-img-container .bg-img.pc {
        display: none;
    }

    .banner-swiper .swiper-pagination {
        margin-bottom: 0rem;
    }
}

/* 去除滚动提醒、去除分页器 */

.banner-swiper.without-scroll-remind .scroll-remind {
    display: none;
}

.banner-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #da251d;
}

.banner-swiper.without-scroll-remind .swiper-pagination-bullet {
    display: none;
}

/* 去除分割线 */
.banner-swiper.without-cut-line .cut-line {
    display: none;
}

/* banner样式2：小版 */
.banner-swiper.small .bg-img-container {
    padding-top: 30%;
    height: 0;
    min-height: 350px;
}

.banner-swiper.small .swiper-pagination {
    display: none;
}

.banner-swiper.small .title-area {
    bottom: auto;
    top: 50%;
    padding-bottom: 0.5rem;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
}

.banner-swiper.small .title-area .sub-title {
    font-size: 0.48rem;
    opacity: 1;
}

.banner-swiper.small .title-area .title {
    font-size: 18px;
    opacity: 25%;
    font-weight: bold;
}

@media only screen and (max-width:1200px) {
    .banner-swiper.small .title-area .sub-title {
        font-size: 28px;
    }
}

/* 内页banner样式 */
.banner-swiper.inside .title-area {
    bottom: auto;
    top: 50%;
}

.banner-swiper.inside .chs-title {
    font-size: 0.48rem;
}

.banner-swiper.inside .eng-title {
    font-size: 0.6rem;
    font-weight: bold;
    opacity: .35;
}


.banner-swiper.inside .cut-line {
    margin: 0.2rem 0;
}

/* 标题位于底部 */
.banner-swiper.lower-title .title-area {
    top: auto;
    bottom: 1.5rem;
    max-width: 92%;
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
}

@media only screen and (max-width:1200px) {
    .banner-swiper.lower-title .title-area .chs-title {
        font-size: 28px;
    }

    .banner-swiper.lower-title .title-area .eng-title {
        font-size: 36px;
    }
}

@media only screen and (max-width:1024px) {


    .banner-swiper .title-area .sub-title {
        font-size: 22px;
    }

    .banner-swiper .title-area .title {
        font-size: 30px;
    }

}

@media only screen and (max-width:768px) {
    .banner-swiper .title-area {
        text-align: center !important;
    }
}

/* TAB切换栏 */
.tab-swiper {
    background: #fff;
    width: 92%;
    height: 80px;
    margin: -80px auto 0 auto;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #e0e0e0;
}

.tab-swiper::before,
.tab-swiper::after {
    content: "";
    display: block;
    width: 1rem;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));

}


.tab-swiper::after {
    left: auto;
    right: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
}

.tab-swiper .swiper-wrapper {
    justify-content: center !important;
}

.tab-swiper .swiper-slide {
    width: auto;
}

.tab-swiper .swiper-slide>a {
    color:#fff;
    line-height: 50px;
    padding: 0 0.4rem;
    height: 50px;
    margin:15px  0.1rem;
    font-size: 20px;
    background:#969696;
}

.tab-swiper .swiper-slide .title {
    position: relative;
}

.tab-swiper .swiper-slide.selected a {
    background: #da251d;
}

/* .tab-swiper .swiper-slide.selected .title::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #da251d;
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
} */

@media only screen and (max-width:1200px) {
    .tab-swiper .swiper-slide a {
        font-size: 18px;
    }

    .tab-swiper {
        height: 70px;
        margin-top: -70px;
    }

    .tab-swiper .swiper-slide>a {
        line-height: 50px;
    }
    .tab-swiper .swiper-slide>a {
        color:#fff;
        line-height: 50px;
        padding: 0 0.4rem;
        height: 50px;
        margin:0.15rem 0.1rem;
        font-size: 18px;
        background:#969696;
    }
}

@media only screen and (max-width:1024px) {
    .tab-swiper .swiper-wrapper {
        justify-content: flex-start !important;
    }
}

@media only screen and (max-width:768px) {
    .tab-swiper .swiper-slide a {
        font-size: 16px;
        line-height:40px;
        height:40px;
    }
    .tab-swiper {
        width: 100%;
        height: 52px;
        margin-top: 0;
    }
    
    .tab-swiper::before, .tab-swiper::after,
    .tab-swiper::after,
    .tab-swiper .swiper-slide.selected .title::after{
        display: none;
    }
    
}

/* 版块标题 带图片标题 */
/* 默认居左，居中.center  */
.area-title.with-icon {
    text-align: left;
}

.area-title.with-icon.center {
    text-align: center;
}

.area-title.with-icon .title-outer-container {
    display: inline-block;
}

.area-title.with-icon .title-inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.3rem;
}

.area-title.with-icon .title-inner-container img {
    height: 0.3rem;
    margin-right: 10px;
}

/* 小标题样式banner */


.banner.small-title .title {
    font-size: 0.48rem;
}

.banner.small-title .sub-title {
    font-size: 0.3rem;
    margin-top: 0.1rem;
    opacity: 1;
}

.banner.small-title .cut-line {
    margin-top: 0.5rem;
}

@media only screen and (max-width:1200px) {
    .banner.small-title .title {
        font-size: 28px;
    }

    .banner.small-title .sub-title {
        font-size: 20px
    }
}

/* 企业文化页面banner样式 */
.culture-banner .title-area .chs-title {
    font-size: 0.3rem;
}

.culture-banner .title-area .eng-title {
    font-size: 0.48rem;
    opacity: 1;
    font-weight: normal;
}

.culture-banner .title-area {
    padding-bottom: 0.5rem;
}

/* 分享图标样式 */

.bdsharebuttonbox a {
    font-size: 20px;
    color: #292929 !important;
    height: 22px !important;
    line-height: 30px !important;
    width: 24px !important;
}

.bdsharebuttonbox a {
    margin: 0 5px !important;
}

.bdsharebuttonbox a .social-report-details-area .text {
    border-top: 1px solid #e6e6e6;
    padding-top: 0.5rem;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 0.3rem;
}


.bdsharebuttonbox li:last-child a {
    padding-left: 0px !important;
    margin-right: 0;
}

.bdshare-button-style0-16:after {
    display: none !important;
}

.social-report-details-area .text {
    margin-top: 0.3rem;
    padding-top: 0.4rem;
    border-top: 1px solid #979797;
}

.social-report-details-area .text img {
    width: 100%;
}



.details-page-area .bdsharebuttonbox a {
    background-size: contain !important;
}

.bdsharebuttonbox .bds_weixin {
    background: url(../images/weixinIocn.png) no-repeat !important;
}

.bdsharebuttonbox .bds_tsina {
    background: url(../images/weiboIocn.png) no-repeat !important;
}

.bdsharebuttonbox .bds_qzone {
    background: url(../images/qqzoneIocn.png) no-repeat !important;
}

.bdsharebuttonbox .bds_sqq {
    background: url(../images/qqIcon.png) no-repeat !important;
}

.bdsharebuttonbox .bds_more {
    background: none !important;
    text-indent: 0 !important;
    font-size: 20px !important;
    line-height: 22px !important;
}

.bdshare_popup_box {
    display: none !important;
}


/* 内页banner样式统一处理 */
.banner:not(.home) a {
    cursor: default !important;
}

.product .banner-swiper .title-area .sub-title {
    opacity: 1;
}

.product .banner-swiper .cut-line.bold {
    margin-top: 0.3rem;
    margin-bottom: 0;
}

.product .breadcrumb {
    margin-bottom: 0.2rem;
}

.banner-swiper.small .bg-img-container {
    padding-top: 30%;
    height: 0;
    min-height: 350px;
}

.server-area .banner-swiper .title-area {
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
}

.bd_weixin_popup {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
}

/* 百度商桥隐藏 */
#hm_t_undefined{
    position: fixed;
    left:0;top:0;
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
}